home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / ada / c01oop.zip / CPPWKBK / CPPV2-1A.MAK < prev    next >
Makefile  |  1992-08-25  |  347b  |  13 lines

  1. # Makefile for Demonstrating Problem 2.1
  2. # Part A: Attempt to create executable from CPPV2-12.CPP
  3.  
  4. all:
  5.     # Compile definition of function into object module
  6.     bcc -c cppv2-11.cpp
  7.  
  8.     # Compile declaration and use of function into object
  9.     bcc -c cppv2-12.cpp
  10.  
  11.     # Attempt a link (fails due to argument types)
  12.     bcc cppv2-12.obj cppv2-11.obj
  13.